home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2011 May / PC Advisor 190 E.iso / pc / ESSENTIALS / VLC Media Player 1.1 / vlc-1.1.5-win32.exe / lua / sd / metachannels.lua < prev    next >
Encoding:
Text File  |  2010-11-13  |  1.7 KB  |  46 lines

  1. --[[
  2.  $Id$
  3.  
  4.  Copyright ┬⌐ 2010 VideoLAN and AUTHORS
  5.  
  6.  Authors: R├⌐mi Duraffort <ivoire at videolan dot org>
  7.  
  8.  This program is free software; you can redistribute it and/or modify
  9.  it under the terms of the GNU General Public License as published by
  10.  the Free Software Foundation; either version 2 of the License, or
  11.  (at your option) any later version.
  12.  
  13.  This program is distributed in the hope that it will be useful,
  14.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  GNU General Public License for more details.
  17.  
  18.  You should have received a copy of the GNU General Public License
  19.  along with this program; if not, write to the Free Software
  20.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21. --]]
  22.  
  23. require "simplexml"
  24.  
  25. function descriptor()
  26.     return { title="Channels.com" }
  27. end
  28.  
  29. function main()
  30.     -- get the primary feed and parse the <channel> tag
  31.     local feed = simplexml.parse_url( "http://metachannels.com/meta_channels?device=vlc&lang=en,es,fr,de,it,other&format=rss&adult_ok=y" )
  32.     local channel = feed.children[1]
  33.  
  34.     -- list all children that are items
  35.     for _,item in ipairs( channel.children ) do
  36.         if( item.name == 'item' ) then
  37.             simplexml.add_name_maps( item )
  38.             local url = string.gsub( item.children_map['link'][1].children[1], '&', '&' )
  39.             local node = vlc.sd.add_item( { path = url,
  40.                                             title = item.children_map['title'][1].children[1],
  41.                                             arturl = item.children_map['image'][1].children_map['url'][1].children[1] } )
  42.         end
  43.     end
  44. end
  45.  
  46.